home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 050a / fview20.zip / FVIEW.DOC next >
Text File  |  1993-02-03  |  4KB  |  102 lines

  1.                              FView Version 2.0
  2.                              -----------------
  3.                            Copyright  1991, 1993
  4.  
  5. COPYRIGHT NOTICE
  6.  
  7. This program is public domain and may be freely distributed, providing it is
  8. distributed in the original archive form (or variation thereof, such as a
  9. different archival program) and no charge is made for its redistribution,
  10. except where charges are made for copying services and/or diskettes. The author
  11. holds exclusive rights to the program. No warranty is made, neither expressed
  12. or implied, as to the suitability of the program for a particular purpose. The
  13. author shall not be liable for damages caused by the use, misuse, or abuse of
  14. this program. The program may not be reverse engineered, nor modified.
  15.  
  16.  
  17. DESCRIPTION
  18.  
  19. FView is a simple, text file viewer program. Since I didn't have one, nor was
  20. able to quite find the one I liked, I built my own. (Like they say, if you 
  21. want something done right you gotta do it yourself.)
  22.  
  23. Usage is very simply:
  24.  
  25.         FVIEW filename
  26.  
  27. This will scan through the specified file, then display it on screen. Much
  28. like DOS's edlin, the filename MUST be specified.
  29.  
  30. While viewing the document, you can scroll up/down/left/right/etc... using
  31. the cursor keys, page up/down keys, home and end keys (HOME takes you to the 
  32. beginning of the file, END takes you to the bottom). As you move around, the
  33. current line and column will be display in the status bar.
  34.  
  35. Line    32 of   591 (  1- 80)                                       C:\TEXT.DAT
  36.      -----    -----  -------                  filename displayed here ^^^^^^^^^
  37.        |         |      |
  38.        |         |      +---------------- range of columns on screen
  39.        |         |
  40.        |         +----------------------- total number of lines in file
  41.        |
  42.        +--------------------------------- current line# of first line at the
  43.                                           top of the screen.
  44.  
  45. To search through a file, hit 'F'. This will bring up a box to type the text
  46. in that you wish to search for. When you hit ENTER, it will begin searching
  47. through the file, starting with the current screen. To quit from the input
  48. box, hit ESC. Note that you cannot abort a search in progress.
  49.  
  50. While in the input box, standard editing keys are in effect, ie. left/right
  51. cursor keys, home/end, insert, etc. Use CTRL-HOME to erase the input and start
  52. over at the first position (CTRL-X also erases). When you first enter the box,
  53. the last text string you entered will be displayed. You can edit this string or
  54. start with a new one. If you begin typing characters immediately, before you
  55. move the cursor, the previous text string will be erased first.
  56.  
  57. To continue a search, hit 'N'. This will continue the search from where the
  58. last text was found (even if you've scrolled it off the screen). If you hit
  59. 'N' before you've selected text with 'F', then a box will be displayed for
  60. you to enter the text.
  61.  
  62. Similarly, hitting 'P' will search backwards from the last found text. The
  63. program will beep if you have hit 'P' before entering text with 'F'.
  64.  
  65. In all 3 cases, if the text string is not found, it will beep and display
  66. "Search string not found". (It doesn't loop back around from the end of the
  67. file to the beginning, or vice-versa).
  68.  
  69.  
  70.  
  71. -------------------------
  72. Revision History
  73. -------------------------
  74.  
  75. Date           Version       Changes
  76.  
  77. February 1993  2.0           Added Search feature.
  78.                              Speeded up display when first scanning the file 
  79.                              by only displaying the percentage in 5% increments.
  80.                              Changed method of programming by using a third 
  81.                              party 'C' Window Library (freely distributable).
  82.  
  83. -------------------------
  84.  
  85.  
  86. ---------------------
  87. Contacting the author
  88. ---------------------
  89.  
  90. I can reached via CompuServe at [70620,1445], or via The Bear Cave BBS at
  91. (416) 321-5015, or send NetMail to Chris Gordon @ 1:250/240.
  92.  
  93. Chris Gordon
  94.  
  95.  
  96. ----------------
  97. Acknowledgements
  98. ----------------
  99.  
  100. P. A. McKenzie for the 'C' Window Library (Copyright 1990, 1991)
  101.  
  102.